home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / edit / dte5_1.zip / FINDREP.H < prev    next >
Text File  |  1991-02-06  |  782b  |  29 lines

  1. /*
  2.  * Written by Douglas Thomson (1989/1990)
  3.  *
  4.  * This source code is released into the public domain.
  5.  */
  6.  
  7. /*
  8.  * This file contains all the prototypes for functions in findrep.c
  9.  */
  10.  
  11. /*
  12.  * cmp_func functions compare two strings
  13.  */
  14. typedef int (*cmp_func) ARGS((char *s1, char *s2));
  15.  
  16. void replace_string ARGS((windows *window));
  17. void find_string ARGS((windows *window));
  18. void do_last ARGS((windows *window));
  19. void goto_marker ARGS((windows *window, int n));
  20. void goto_top_file ARGS((windows *window));
  21. void goto_end_file ARGS((windows *window));
  22. void match_pair ARGS((windows *window, int forward));
  23. void goto_line ARGS((windows *window));
  24.  
  25. #ifdef GRIB
  26. void set_grib_count ARGS((windows *window));
  27. void find_grib_error ARGS((windows *window));
  28. #endif
  29.